home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / MacGzip 0.1b2 Source / gzip-1.2.4 sources / inflate.c < prev    next >
Text File  |  1993-11-08  |  32KB  |  965 lines

  1. /* inflate.c -- Not copyrighted 1992 by Mark Adler
  2.    version c10p1, 10 January 1993 */
  3.  
  4. /* You can do whatever you like with this source file, though I would
  5.    prefer that if you modify it and redistribute it that you include
  6.    comments to that effect with your name and the date.  Thank you.
  7.    [The history has been moved to the file ChangeLog.]
  8.  */
  9.  
  10. /*
  11.  * Modified:1993 by SPDsoft for MacGzip
  12.  *
  13.  */
  14.  
  15.  
  16. /*
  17.    Inflate deflated (PKZIP's method 8 compressed) data.  The compression
  18.    method searches for as much of the current string of bytes (up to a
  19.    length of 258) in the previous 32K bytes.  If it doesn't find any
  20.    matches (of at least length 3), it codes the next byte.  Otherwise, it
  21.    codes the length of the matched string and its distance backwards from
  22.    the current position.  There is a single Huffman code that codes both
  23.    single bytes (called "literals") and match lengths.  A second Huffman
  24.    code codes the distance information, which follows a length code.  Each
  25.    length or distance code actually represents a base value and a number
  26.    of "extra" (sometimes zero) bits to get to add to the base value.  At
  27.    the end of each deflated block is a special end-of-block (EOB) literal/
  28.    length code.  The decoding process is basically: get a literal/length
  29.    code; if EOB then done; if a literal, emit the decoded byte; if a
  30.    length then get the distance and emit the referred-to bytes from the
  31.    sliding window of previously emitted data.
  32.  
  33.    There are (currently) three kinds of inflate blocks: stored, fixed, and
  34.    dynamic.  The compressor deals with some chunk of data at a time, and
  35.    decides which method to use on a chunk-by-chunk basis.  A chunk might
  36.    typically be 32K or 64K.  If the chunk is uncompressible, then the
  37.    "stored" method is used.  In this case, the bytes are simply stored as
  38.    is, eight bits per byte, with none of the above coding.  The bytes are
  39.    preceded by a count, since there is no longer an EOB code.
  40.  
  41.    If the data is compressible, then either the fixed or dynamic methods
  42.    are used.  In the dynamic method, the compressed data is preceded by
  43.    an encoding of the literal/length and distance Huffman codes that are
  44.    to be used to decode this block.  The representation is itself Huffman
  45.    coded, and so is preceded by a description of that code.  These code
  46.    descriptions take up a little space, and so for small blocks, there is
  47.    a predefined set of codes, called the fixed codes.  The fixed method is
  48.    used if the block codes up smaller that way (usually for quite small
  49.    chunks), otherwise the dynamic method is used.  In the latter case, the
  50.    codes are customized to the probabilities in the current block, and so
  51.    can code it much better than the pre-determined fixed codes.
  52.  
  53.    The Huffman codes themselves are decoded using a mutli-level table
  54.    lookup, in order to maximize the speed of decoding plus the speed of
  55.    building the decoding tables.  See the comments below that precede the
  56.    lbits and dbits tuning parameters.
  57.  */
  58.  
  59.  
  60. /*
  61.    Notes beyond the 1.93a appnote.txt:
  62.  
  63.    1. Distance pointers never point before the beginning of the output
  64.       stream.
  65.    2. Distance pointers can point back across blocks, up to 32k away.
  66.    3. There is an implied maximum of 7 bits for the bit length table and
  67.       15 bits for the actual data.
  68.    4. If only one code exists, then it is encoded using one bit.  (Zero
  69.       would be more efficient, but perhaps a little confusing.)  If two
  70.       codes exist, they are coded using one bit each (0 and 1).
  71.    5. There is no way of sending zero distance codes--a dummy must be
  72.       sent if there are none.  (History: a pre 2.0 version of PKZIP would
  73.       store blocks with no distance codes, but this was discovered to be
  74.       too harsh a criterion.)  Valid only for 1.93a.  2.04c does allow
  75.       zero distance codes, which is sent as one code of zero bits in
  76.       length.
  77.    6. There are up to 286 literal/length codes.  Code 256 represents the
  78.       end-of-block.  Note however that the static length tree defines
  79.       288 codes just to fill out the Huffman codes.  Codes 286 and 287
  80.       cannot be used though, since there is no length base or extra bits
  81.       defined for them.  Similarly, there are up to 30 distance codes.
  82.       However, static trees define 32 codes (all 5 bits) to fill out the
  83.       Huffman codes, but the last two had better not show up in the data.
  84.    7. Unzip can check dynamic Huffman blocks for complete code sets.
  85.       The exception is that a single code would not be complete (see #4).
  86.    8. The five bits following the block type is really the number of
  87.       literal codes sent minus 257.
  88.    9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits
  89.       (1+6+6).  Therefore, to output three times the length, you output
  90.       three codes (1+1+1), whereas to output four times the same length,
  91.       you only need two codes (1+3).  Hmm.
  92.   10. In the tree reconstruction algorithm, Code = Code + Increment
  93.       only if BitLength(i) is not zero.  (Pretty obvious.)
  94.   11. Correction: 4 Bits: # of Bit Length codes - 4     (4 - 19)
  95.   12. Note: length code 284 can represent 227-258, but length code 285
  96.       really is 258.  The last length deserves its own, short code
  97.       since it gets used a lot in very redundant files.  The length
  98.       258 is special since 258 - 3 (the min match length) is 255.
  99.   13. The literal/length and distance code bit lengths are read as a
  100.       single stream of lengths.  It is possible (and advantageous) for
  101.       a repeat code (16, 17, or 18) to go across the boundary between
  102.       the two sets of lengths.
  103.  */
  104.  
  105. #ifdef RCSID
  106. static char rcsid[] = "$Id: inflate.c,v 0.14 1993/06/10 13:27:04 jloup Exp $";
  107. #endif
  108.  
  109. #include <sys/types.h>
  110.  
  111. #include "tailor.h"
  112.  
  113. #if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
  114. #  include <stdlib.h>
  115. #endif
  116.  
  117. #include "gzip.h"
  118. #define slide window
  119.  
  120. #include "MacErrors.h"
  121.  
  122. /* Huffman code lookup table entry--this entry is four bytes for machines
  123.    that have 16-bit pointers (e.g. PC's in the small or medium model).
  124.    Valid extra bits are 0..13.  e == 15 is EOB (end of block), e == 16
  125.    means that v is a literal, 16 < e < 32 means that v is a pointer to
  126.    the next table, which codes e - 16 bits, and lastly e == 99 indicates
  127.    an unused code.  If a code with e == 99 is looked up, this implies an
  128.    error in the data. */
  129. struct huft {
  130.   uch e;                /* number of extra bits or operation */
  131.   uch b;                /* number of bits in this code or subcode */
  132.   union {
  133.     ush n;              /* literal, length base, or distance base */
  134.     struct huft *t;     /* pointer to next level of table */
  135.   } v;
  136. };
  137.  
  138.  
  139. /* Function prototypes */
  140. int huft_build OF((unsigned *, unsigned, unsigned, ush *, ush *,
  141.                    struct huft **, int *));
  142. int huft_free OF((struct huft *));
  143. int inflate_codes OF((struct huft *, struct huft *, int, int));
  144. int inflate_stored OF((void));
  145. int inflate_fixed OF((void));
  146. int inflate_dynamic OF((void));
  147. int inflate_block OF((int *));
  148. int inflate OF((void));
  149.  
  150.  
  151. /* The inflate algorithm uses a sliding 32K byte window on the uncompressed
  152.    stream to find repeated byte strings.  This is implemented here as a
  153.    circular buffer.  The index is updated simply by incrementing and then
  154.    and'ing with 0x7fff (32K-1). */
  155. /* It is left to other modules to supply the 32K area.  It is assumed
  156.    to be usable as if it were declared "uch slide[32768];" or as just
  157.    "uch *slide;" and then malloc'ed in the latter case.  The definition
  158.    must be in unzip.h, included above. */
  159. /* unsigned wp;             current position in slide */
  160. #define wp outcnt
  161. #define flush_output(w) (wp=(w),flush_window())
  162.  
  163. /* Tables for deflate from PKZIP's appnote.txt. */
  164. static unsigned border[] = {    /* Order of the bit length code lengths */
  165.         16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
  166. static ush cplens[] = {         /* Copy lengths for literal codes 257..285 */
  167.         3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
  168.         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0};
  169.         /* note: see note #13 above about the 258 in this list. */
  170. static ush cplext[] = {         /* Extra bits for literal codes 257..285 */
  171.         0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2,
  172.         3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 99, 99}; /* 99==invalid */
  173. static ush cpdist[] = {         /* Copy offsets for distance codes 0..29 */
  174.         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
  175.         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
  176.         8193, 12289, 16385, 24577};
  177. static ush cpdext[] = {         /* Extra bits for distance codes */
  178.         0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6,
  179.         7, 7, 8, 8, 9, 9, 10, 10, 11, 11,
  180.         12, 12, 13, 13};
  181.  
  182.  
  183.  
  184. /* Macros for inflate() bit peeking and grabbing.
  185.    The usage is:
  186.    
  187.         NEEDBITS(j)
  188.         x = b & mask_bits[j];
  189.         DUMPBITS(j)
  190.  
  191.    where NEEDBITS makes sure that b has at least j bits in it, and
  192.    DUMPBITS removes the bits from b.  The macros use the variable k
  193.    for the number of bits in b.  Normally, b and k are register
  194.    variables for speed, and are initialized at the beginning of a
  195.    routine that uses these macros from a global bit buffer and count.
  196.  
  197.    If we assume that EOB will be the longest code, then we will never
  198.    ask for bits with NEEDBITS that are beyond the end of the stream.
  199.    So, NEEDBITS should not read any more bytes than are needed to
  200.    meet the request.  Then no bytes need to be "returned" to the buffer
  201.    at the end of the last block.
  202.  
  203.    However, this assumption is not true for fixed blocks--the EOB code
  204.    is 7 bits, but the other literal/length codes can be 8 or 9 bits.
  205.    (The EOB code is shorter than other codes because fixed blocks are
  206.    generally short.  So, while a block always has an EOB, many other
  207.    literal/length codes have a significantly lower probability of
  208.    showing up at all.)  However, by making the first table have a
  209.    lookup of seven bits, the EOB code will be found in that first
  210.    lookup, and so will not require that too many bits be pulled from
  211.    the stream.
  212.  */
  213.  
  214. ulg bb;                         /* bit buffer */
  215. unsigned bk;                    /* bits in bit buffer */
  216.  
  217. ush mask_bits[] = {
  218.     0x0000,
  219.     0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
  220.     0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
  221. };
  222.  
  223. #ifdef CRYPT
  224.   uch cc;
  225. #  define NEXTBYTE() \
  226.      (decrypt ? (cc = get_byte(), zdecode(cc), cc) : get_byte())
  227. #else
  228. #  define NEXTBYTE()  (uch)get_byte()
  229. #endif
  230. #define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE())<<k;k+=8;}}
  231. #define DUMPBITS(n) {b>>=(n);k-=(n);}
  232.  
  233.  
  234. /*
  235.    Huffman code decoding is performed using a multi-level table lookup.
  236.    The fastest way to decode is to simply build a lookup table whose
  237.    size is determined by the longest code.  However, the time it takes
  238.    to build this table can also be a factor if the data being decoded
  239.    is not very long.  The most common codes are necessarily the
  240.    shortest codes, so those codes dominate the decoding time, and hence
  241.    the speed.  The idea is you can have a shorter table that decodes the
  242.    shorter, more probable codes, and then point to subsidiary tables for
  243.    the longer codes.  The time it costs to decode the longer codes is
  244.    then traded against the time it takes to make longer tables.
  245.  
  246.    This results of this trade are in the variables lbits and dbits
  247.    below.  lbits is the number of bits the first level table for literal/
  248.    length codes can decode in one step, and dbits is the same thing for
  249.    the distance codes.  Subsequent tables are also less than or equal to
  250.    those sizes.  These values may be adjusted either when all of the
  251.    codes are shorter than that, in which case the longest code length in
  252.    bits is used, or when the shortest code is *longer* than the requested
  253.    table size, in which case the length of the shortest code in bits is
  254.    used.
  255.  
  256.    There are two different values for the two tables, since they code a
  257.    different number of possibilities each.  The literal/length table
  258.    codes 286 possible values, or in a flat code, a little over eight
  259.    bits.  The distance table codes 30 possible values, or a little less
  260.    than five bits, flat.  The optimum values for speed end up being
  261.    about one bit more than those, so lbits is 8+1 and dbits is 5+1.
  262.    The optimum values may differ though from machine to machine, and
  263.    possibly even between compilers.  Your mileage may vary.
  264.  */
  265.  
  266.  
  267. int lbits = 9;          /* bits in base literal/length lookup table */
  268. int dbits = 6;          /* bits in base distance lookup table */
  269.  
  270.  
  271. /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
  272. #define BMAX 16         /* maximum bit length of any code (16 for explode) */
  273. #define N_MAX 288       /* maximum number of codes in any set */
  274.  
  275.  
  276. unsigned hufts;         /* track memory usage */
  277.  
  278.  
  279. int huft_build(b, n, s, d, e, t, m)
  280. unsigned *b;            /* code lengths in bits (all assumed <= BMAX) */
  281. unsigned n;             /* number of codes (assumed <= N_MAX) */
  282. unsigned s;             /* number of simple-valued codes (0..s-1) */
  283. ush *d;                 /* list of base values for non-simple codes */
  284. ush *e;                 /* list of extra bits for non-simple codes */
  285. struct huft **t;        /* result: starting table */
  286. int *m;                 /* maximum lookup bits, returns actual */
  287. /* Given a list of code lengths and a maximum table size, make a set of
  288.    tables to decode that set of codes.  Return zero on success, one if
  289.    the given code set is incomplete (the tables are still built in this
  290.    case), two if the input is invalid (all zero length codes or an
  291.    oversubscribed set of lengths), and three if not enough memory. */
  292. {
  293.   unsigned a;                   /* counter for codes of length k */
  294.   unsigned c[BMAX+1];           /* bit length count table */
  295.   unsigned f;                   /* i repeats in table every f entries */
  296.   int g;                        /* maximum code length */
  297.   int h;                        /* table level */
  298.   register unsigned i;          /* counter, current code */
  299.   register unsigned j;          /* counter */
  300.   register int k;               /* number of bits in current code */
  301.   int l;                        /* bits per table (returned in m) */
  302.   register unsigned *p;         /* pointer into c[], b[], or v[] */
  303.   register struct huft *q;      /* points to current table */
  304.   struct huft r;                /* table entry for structure assignment */
  305.   struct huft *u[BMAX];         /* table stack */
  306.   unsigned v[N_MAX];            /* values in order of bit length */
  307.   register int w;               /* bits before this table == (l * h) */
  308.   unsigned x[BMAX+1];           /* bit offsets, then code stack */
  309.   unsigned *xp;                 /* pointer into x */
  310.   int y;                        /* number of dummy codes added */
  311.   unsigned z;                   /* number of entries in current table */
  312.  
  313.  
  314.   /* Generate counts for each bit length */
  315.   memzero(c, sizeof(c));
  316.   p = b;  i = n;
  317.   do {
  318.     Tracecv(*p, (stderr, (n-i >= ' ' && n-i <= '~' ? "%c %d\n" : "0x%x %d\n"), 
  319.         n-i, *p));
  320.     c[*p]++;                    /* assume all entries <= BMAX */
  321.     p++;                      /* Can't combine with above line (Solaris bug) */
  322.   } while (--i);
  323.   if (c[0] == n)                /* null input--all zero length codes */
  324.   {
  325.     *t = (struct huft *)NULL;
  326.     *m = 0;
  327.     return 0;
  328.   }
  329.  
  330.  
  331.   /* Find minimum and maximum length, bound *m by those */
  332.   l = *m;
  333.   for (j = 1; j <= BMAX; j++)
  334.     if (c[j])
  335.       break;
  336.   k = j;                        /* minimum code length */
  337.   if ((unsigned)l < j)
  338.     l = j;
  339.   for (i = BMAX; i; i--)
  340.     if (c[i])
  341.       break;
  342.   g = i;                        /* maximum code length */
  343.   if ((unsigned)l > i)
  344.     l = i;
  345.   *m = l;
  346.  
  347.  
  348.   /* Adjust last length count to fill out codes, if needed */
  349.   for (y = 1 << j; j < i; j++, y <<= 1)
  350.     if ((y -= c[j]) < 0)
  351.       return 2;                 /* bad input: more codes than bits */
  352.   if ((y -= c[i]) < 0)
  353.     return 2;
  354.   c[i] += y;
  355.  
  356.  
  357.   /* Generate starting offsets into the value table for each length */
  358.   x[1] = j = 0;
  359.   p = c + 1;  xp = x + 2;
  360.   while (--i) {                 /* note that i == g from above */
  361.     *xp++ = (j += *p++);
  362.   }
  363.  
  364.  
  365.   /* Make a table of values in order of bit lengths */
  366.   p = b;  i = 0;
  367.   do {
  368.     if ((j = *p++) != 0)
  369.       v[x[j]++] = i;
  370.   } while (++i < n);
  371.  
  372.  
  373.   /* Generate the Huffman codes and for each, make the table entries */
  374.   x[0] = i = 0;                 /* first Huffman code is zero */
  375.   p = v;                        /* grab values in bit order */
  376.   h = -1;                       /* no tables yet--level -1 */
  377.   w = -l;                       /* bits decoded == (l * h) */
  378.   u[0] = (struct huft *)NULL;   /* just to keep compilers happy */
  379.   q = (struct huft *)NULL;      /* ditto */
  380.   z = 0;                        /* ditto */
  381.  
  382.   /* go through the bit lengths (k already is bits in shortest code) */
  383.   for (; k <= g; k++)
  384.   {
  385.     a = c[k];
  386.     while (a--)
  387.     {
  388.       /* here i is the Huffman code of length k bits for value *p */
  389.       /* make tables up to required level */
  390.       while (k > w + l)
  391.       {
  392.         h++;
  393.         w += l;                 /* previous table always l bits */
  394.  
  395.         /* compute minimum size table less than or equal to l bits */
  396.         z = (z = g - w) > (unsigned)l ? l : z;  /* upper limit on table size */
  397.         if ((f = 1 << (j = k - w)) > a + 1)     /* try a k-w bit table */
  398.         {                       /* too few codes for k-w bit table */
  399.           f -= a + 1;           /* deduct codes from patterns left */
  400.           xp = c + k;
  401.           while (++j < z)       /* try smaller tables up to z bits */
  402.           {
  403.             if ((f <<= 1) <= *++xp)
  404.               break;            /* enough codes to use up j bits */
  405.             f -= *xp;           /* else deduct codes from patterns */
  406.           }
  407.         }
  408.         z = 1 << j;             /* table entries for j-bit table */
  409.  
  410.         /* allocate and link in new table */
  411.         if ((q = (struct huft *)malloc((z + 1)*sizeof(struct huft))) ==
  412.             (struct huft *)NULL)
  413.         {
  414.           if (h)
  415.             huft_free(u[0]);
  416.           return 3;             /* not enough memory */
  417.         }
  418.         hufts += z + 1;         /* track memory usage */
  419.         *t = q + 1;             /* link to list for huft_free() */
  420.         *(t = &(q->v.t)) = (struct huft *)NULL;
  421.         u[h] = ++q;             /* table starts after link */
  422.  
  423.         /* connect to last table, if there is one */
  424.         if (h)
  425.         {
  426.           x[h] = i;             /* save pattern for backing up */
  427.           r.b = (uch)l;         /* bits to dump before this table */
  428.           r.e = (uch)(16 + j);  /* bits in this table */
  429.           r.v.t = q;            /* pointer to this table */
  430.           j = i >> (w - l);     /* (get around Turbo C bug) */
  431.           u[h-1][j] = r;        /* connect to last table */
  432.         }
  433.       }
  434.  
  435.       /* set up table entry in r */
  436.       r.b = (uch)(k - w);
  437.       if (p >= v + n)
  438.         r.e = 99;               /* out of values--invalid code */
  439.       else if (*p < s)
  440.       {
  441.         r.e = (uch)(*p < 256 ? 16 : 15);    /* 256 is end-of-block code */
  442.         r.v.n = (ush)(*p);             /* simple code is just the value */
  443.     p++;                           /* one compiler does not like *p++ */
  444.       }
  445.       else
  446.       {
  447.         r.e = (uch)e[*p - s];   /* non-simple--look up in lists */
  448.         r.v.n = d[*p++ - s];
  449.       }
  450.  
  451.       /* fill code-like entries with r */
  452.       f = 1 << (k - w);
  453.       for (j = i >> w; j < z; j += f)
  454.         q[j] = r;
  455.  
  456.       /* backwards increment the k-bit code i */
  457.       for (j = 1 << (k - 1); i & j; j >>= 1)
  458.         i ^= j;
  459.       i ^= j;
  460.  
  461.       /* backup over finished tables */
  462.       while ((i & ((1 << w) - 1)) != x[h])
  463.       {
  464.         h--;                    /* don't need to update q */
  465.         w -= l;
  466.       }
  467.     }
  468.   }
  469.  
  470.  
  471.   /* Return true (1) if we were given an incomplete table */
  472.   return y != 0 && g != 1;
  473. }
  474.  
  475.  
  476.  
  477. int huft_free(t)
  478. struct huft *t;         /* table to free */
  479. /* Free the malloc'ed tables built by huft_build(), which makes a linked
  480.    list of the tables it made, with the links in a dummy first entry of
  481.    each table. */
  482. {
  483.   register struct huft *p, *q;
  484.  
  485.  
  486.   /* Go through linked list, freeing from the malloced (t[-1]) address. */
  487.   p = t;
  488.   while (p != (struct huft *)NULL)
  489.   {
  490.     q = (--p)->v.t;
  491.     free((char*)p);
  492.     p = q;
  493.   } 
  494.   return 0;
  495. }
  496.  
  497.  
  498. int inflate_codes(tl, td, bl, bd)
  499. struct huft *tl, *td;   /* literal/length and distance decoder tables */
  500. int bl, bd;             /* number of bits decoded by tl[] and td[] */
  501. /* inflate (decompress) the codes in a deflated (compressed) block.
  502.    Return an error code or zero if it all goes ok. */
  503. {
  504.   register unsigned e;  /* table entry flag/number of extra bits */
  505.   unsigned n, d;        /* length and index for copy */
  506.   unsigned w;           /* current window position */
  507.   struct huft *t;       /* pointer to table entry */
  508.   unsigned ml, md;      /* masks for bl and bd bits */
  509.   register ulg b;       /* bit buffer */
  510.   register unsigned k;  /* number of bits in bit buffer */
  511.  
  512.  
  513.   /* make local copies of globals */
  514.   b = bb;                       /* initialize bit buffer */
  515.   k = bk;
  516.   w = wp;                       /* initialize window position */
  517.  
  518.   /* inflate the coded data */
  519.   ml = mask_bits[bl];           /* precompute masks for speed */
  520.   md = mask_bits[bd];
  521.   for (;;)                      /* do until end of block */
  522.   {
  523.     NEEDBITS((unsigned)bl)
  524.     if ((e = (t = tl + ((unsigned)b & ml))->e) > 16)
  525.       do {
  526.         if (e == 99)
  527.           return 1;
  528.         DUMPBITS(t->b)
  529.         e -= 16;
  530.         NEEDBITS(e)
  531.       } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16);
  532.     DUMPBITS(t->b)
  533.     if (e == 16)                /* then it's a literal */
  534.     {
  535.       slide[w++] = (uch)t->v.n;
  536.       Tracevv((stderr, "%c", slide[w-1]));
  537.       if (w == WSIZE)
  538.       {
  539.         flush_output(w);
  540.         w = 0;
  541.       }
  542.     }
  543.     else                        /* it's an EOB or a length */
  544.     {
  545.       /* exit if end of block */
  546.       if (e == 15)
  547.         break;
  548.  
  549.       /* get length of block to copy */
  550.       NEEDBITS(e)
  551.       n = t->v.n + ((unsigned)b & mask_bits[e]);
  552.       DUMPBITS(e);
  553.  
  554.       /* decode distance of block to copy */
  555.       NEEDBITS((unsigned)bd)
  556.       if ((e = (t = td + ((unsigned)b & md))->e) > 16)
  557.         do {
  558.           if (e == 99)
  559.             return 1;
  560.           DUMPBITS(t->b)
  561.           e -= 16;
  562.           NEEDBITS(e)
  563.         } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16);
  564.       DUMPBITS(t->b)
  565.       NEEDBITS(e)
  566.       d = w - t->v.n - ((unsigned)b & mask_bits[e]);
  567.       DUMPBITS(e)
  568.       Tracevv((stderr,"\\[%d,%d]", w-d, n));
  569.  
  570.       /* do the copy */
  571.       do {
  572.         n -= (e = (e = WSIZE - ((d &= WSIZE-1) > w ? d : w)) > n ? n : e);
  573. #if !defined(NOMEMCPY) && !defined(DEBUG)
  574.         if (w - d >= e)         /* (this test assumes unsigned comparison) */
  575.         {
  576.           memcpy(slide + w, slide + d, e);
  577.           w += e;
  578.           d += e;
  579.         }
  580.         else                      /* do it slow to avoid memcpy() overlap */
  581. #endif /* !NOMEMCPY */
  582.           do {
  583.             slide[w++] = slide[d++];
  584.         Tracevv((stderr, "%c", slide[w-1]));
  585.           } while (--e);
  586.         if (w == WSIZE)
  587.         {
  588.           flush_output(w);
  589.           w = 0;
  590.         }
  591.       } while (n);
  592.     }
  593.   }
  594.  
  595.  
  596.   /* restore the globals from the locals */
  597.   wp = w;                       /* restore global window pointer */
  598.   bb = b;                       /* restore global bit buffer */
  599.   bk = k;
  600.  
  601.   /* done */
  602.   return 0;
  603. }
  604.  
  605.  
  606.  
  607. int inflate_stored()
  608. /* "decompress" an inflated type 0 (stored) block. */
  609. {
  610.   unsigned n;           /* number of bytes in block */
  611.   unsigned w;           /* current window position */
  612.   register ulg b;       /* bit buffer */
  613.   register unsigned k;  /* number of bits in bit buffer */
  614.  
  615.  
  616.   /* make local copies of globals */
  617.   b = bb;                       /* initialize bit buffer */
  618.   k = bk;
  619.   w = wp;                       /* initialize window position */
  620.  
  621.  
  622.   /* go to byte boundary */
  623.   n = k & 7;
  624.   DUMPBITS(n);
  625.  
  626.  
  627.   /* get the length and its complement */
  628.   NEEDBITS(16)
  629.   n = ((unsigned)b & 0xffff);
  630.   DUMPBITS(16)
  631.   NEEDBITS(16)
  632.   if (n != (unsigned)((~b) & 0xffff))
  633.     return 1;                   /* error in compressed data */
  634.   DUMPBITS(16)
  635.  
  636.  
  637.   /* read and output the compressed data */
  638.   while (n--)
  639.   {
  640.     NEEDBITS(8)
  641.     slide[w++] = (uch)b;
  642.     if (w == WSIZE)
  643.     {
  644.       flush_output(w);
  645.       w = 0;
  646.     }
  647.     DUMPBITS(8)
  648.   }
  649.  
  650.  
  651.   /* restore the globals from the locals */
  652.   wp = w;                       /* restore global window pointer */
  653.   bb = b;                       /* restore global bit buffer */
  654.   bk = k;
  655.   return 0;
  656. }
  657.  
  658.  
  659.  
  660. int inflate_fixed()
  661. /* decompress an inflated type 1 (fixed Huffman codes) block.  We should
  662.    either replace this with a custom decoder, or at least precompute the
  663.    Huffman tables. */
  664. {
  665.   int i;                /* temporary variable */
  666.   struct huft *tl;      /* literal/length code table */
  667.   struct huft *td;      /* distance code table */
  668.   int bl;               /* lookup bits for tl */
  669.   int bd;               /* lookup bits for td */
  670.   unsigned l[288];      /* length list for huft_build */
  671.  
  672.  
  673.   /* set up literal table */
  674.   for (i = 0; i < 144; i++)
  675.     l[i] = 8;
  676.   for (; i < 256; i++)
  677.     l[i] = 9;
  678.   for (; i < 280; i++)
  679.     l[i] = 7;
  680.   for (; i < 288; i++)          /* make a complete, but wrong code set */
  681.     l[i] = 8;
  682.   bl = 7;
  683.   if ((i = huft_build(l, 288, 257, cplens, cplext, &tl, &bl)) != 0)
  684.     return i;
  685.  
  686.  
  687.   /* set up distance table */
  688.   for (i = 0; i < 30; i++)      /* make an incomplete code set */
  689.     l[i] = 5;
  690.   bd = 5;
  691.   if ((i = huft_build(l, 30, 0, cpdist, cpdext, &td, &bd)) > 1)
  692.   {
  693.     huft_free(tl);
  694.     return i;
  695.   }
  696.  
  697.  
  698.   /* decompress until an end-of-block code */
  699.   if (inflate_codes(tl, td, bl, bd))
  700.     return 1;
  701.  
  702.  
  703.   /* free the decoding tables, return */
  704.   huft_free(tl);
  705.   huft_free(td);
  706.   return 0;
  707. }
  708.  
  709.  
  710.  
  711. int inflate_dynamic()
  712. /* decompress an inflated type 2 (dynamic Huffman codes) block. */
  713. {
  714.   int i;                /* temporary variables */
  715.   unsigned j;
  716.   unsigned l;           /* last length */
  717.   unsigned m;           /* mask for bit lengths table */
  718.   unsigned n;           /* number of lengths to get */
  719.   struct huft *tl;      /* literal/length code table */
  720.   struct huft *td;      /* distance code table */
  721.   int bl;               /* lookup bits for tl */
  722.   int bd;               /* lookup bits for td */
  723.   unsigned nb;          /* number of bit length codes */
  724.   unsigned nl;          /* number of literal/length codes */
  725.   unsigned nd;          /* number of distance codes */
  726. #ifdef PKZIP_BUG_WORKAROUND
  727.   unsigned ll[288+32];  /* literal/length and distance code lengths */
  728. #else
  729.   unsigned ll[286+30];  /* literal/length and distance code lengths */
  730. #endif
  731.   register ulg b;       /* bit buffer */
  732.   register unsigned k;  /* number of bits in bit buffer */
  733.  
  734.  
  735.   /* make local bit buffer */
  736.   b = bb;
  737.   k = bk;
  738.  
  739.  
  740.   /* read in table lengths */
  741.   NEEDBITS(5)
  742.   nl = 257 + ((unsigned)b & 0x1f);      /* number of literal/length codes */
  743.   DUMPBITS(5)
  744.   NEEDBITS(5)
  745.   nd = 1 + ((unsigned)b & 0x1f);        /* number of distance codes */
  746.   DUMPBITS(5)
  747.   NEEDBITS(4)
  748.   nb = 4 + ((unsigned)b & 0xf);         /* number of bit length codes */
  749.   DUMPBITS(4)
  750. #ifdef PKZIP_BUG_WORKAROUND
  751.   if (nl > 288 || nd > 32)
  752. #else
  753.   if (nl > 286 || nd > 30)
  754. #endif
  755.     return 1;                   /* bad lengths */
  756.  
  757.  
  758.   /* read in bit-length-code lengths */
  759.   for (j = 0; j < nb; j++)
  760.   {
  761.     NEEDBITS(3)
  762.     ll[border[j]] = (unsigned)b & 7;
  763.     DUMPBITS(3)
  764.   }
  765.   for (; j < 19; j++)
  766.     ll[border[j]] = 0;
  767.  
  768.  
  769.   /* build decoding table for trees--single level, 7 bit lookup */
  770.   bl = 7;
  771.   if ((i = huft_build(ll, 19, 19, NULL, NULL, &tl, &bl)) != 0)
  772.   {
  773.     if (i == 1)
  774.       huft_free(tl);
  775.     return i;                   /* incomplete code set */
  776.   }
  777.  
  778.  
  779.   /* read in literal and distance code lengths */
  780.   n = nl + nd;
  781.   m = mask_bits[bl];
  782.   i = l = 0;
  783.   while ((unsigned)i < n)
  784.   {
  785.     NEEDBITS((unsigned)bl)
  786.     j = (td = tl + ((unsigned)b & m))->b;
  787.     DUMPBITS(j)
  788.     j = td->v.n;
  789.     if (j < 16)                 /* length of code in bits (0..15) */
  790.       ll[i++] = l = j;          /* save last length in l */
  791.     else if (j == 16)           /* repeat last length 3 to 6 times */
  792.     {
  793.       NEEDBITS(2)
  794.       j = 3 + ((unsigned)b & 3);
  795.       DUMPBITS(2)
  796.       if ((unsigned)i + j > n)
  797.         return 1;
  798.       while (j--)
  799.         ll[i++] = l;
  800.     }
  801.     else if (j == 17)           /* 3 to 10 zero length codes */
  802.     {
  803.       NEEDBITS(3)
  804.       j = 3 + ((unsigned)b & 7);
  805.       DUMPBITS(3)
  806.       if ((unsigned)i + j > n)
  807.         return 1;
  808.       while (j--)
  809.         ll[i++] = 0;
  810.       l = 0;
  811.     }
  812.     else                        /* j == 18: 11 to 138 zero length codes */
  813.     {
  814.       NEEDBITS(7)
  815.       j = 11 + ((unsigned)b & 0x7f);
  816.       DUMPBITS(7)
  817.       if ((unsigned)i + j > n)
  818.         return 1;
  819.       while (j--)
  820.         ll[i++] = 0;
  821.       l = 0;
  822.     }
  823.   }
  824.  
  825.  
  826.   /* free decoding table for trees */
  827.   huft_free(tl);
  828.  
  829.  
  830.   /* restore the global bit buffer */
  831.   bb = b;
  832.   bk = k;
  833.  
  834.  
  835.   /* build the decoding tables for literal/length and distance codes */
  836.   bl = lbits;
  837.   if ((i = huft_build(ll, nl, 257, cplens, cplext, &tl, &bl)) != 0)
  838.   {
  839.     if (i == 1) {
  840.       sprintf(strerr, " incomplete literal tree");
  841.       Calert(strerr);
  842.       huft_free(tl);
  843.     }
  844.     return i;                   /* incomplete code set */
  845.   }
  846.   bd = dbits;
  847.   if ((i = huft_build(ll + nl, nd, 0, cpdist, cpdext, &td, &bd)) != 0)
  848.   {
  849.     if (i == 1) {
  850.       sprintf(strerr, " incomplete distance tree");
  851.       Calert(strerr);
  852. #ifdef PKZIP_BUG_WORKAROUND
  853.       i = 0;
  854.     }
  855. #else
  856.       huft_free(td);
  857.     }
  858.     huft_free(tl);
  859.     return i;                   /* incomplete code set */
  860. #endif
  861.   }
  862.  
  863.  
  864.   /* decompress until an end-of-block code */
  865.   if (inflate_codes(tl, td, bl, bd))
  866.     return 1;
  867.  
  868.  
  869.   /* free the decoding tables, return */
  870.   huft_free(tl);
  871.   huft_free(td);
  872.   return 0;
  873. }
  874.  
  875.  
  876.  
  877. int inflate_block(e)
  878. int *e;                 /* last block flag */
  879. /* decompress an inflated block */
  880. {
  881.   unsigned t;           /* block type */
  882.   register ulg b;       /* bit buffer */
  883.   register unsigned k;  /* number of bits in bit buffer */
  884.  
  885.  
  886.   /* make local bit buffer */
  887.   b = bb;
  888.   k = bk;
  889.  
  890.  
  891.   /* read in last block bit */
  892.   NEEDBITS(1)
  893.   *e = (int)b & 1;
  894.   DUMPBITS(1)
  895.  
  896.  
  897.   /* read in block type */
  898.   NEEDBITS(2)
  899.   t = (unsigned)b & 3;
  900.   DUMPBITS(2)
  901.  
  902.  
  903.   /* restore the global bit buffer */
  904.   bb = b;
  905.   bk = k;
  906.  
  907.  
  908.   /* inflate that block type */
  909.   if (t == 2)
  910.     return inflate_dynamic();
  911.   if (t == 0)
  912.     return inflate_stored();
  913.   if (t == 1)
  914.     return inflate_fixed();
  915.  
  916.  
  917.   /* bad block type */
  918.   return 2;
  919. }
  920.  
  921.  
  922.  
  923. int inflate()
  924. /* decompress an inflated entry */
  925. {
  926.   int e;                /* last block flag */
  927.   int r;                /* result code */
  928.   unsigned h;           /* maximum struct huft's malloc'ed */
  929.  
  930.  
  931.   /* initialize window, bit buffer */
  932.   wp = 0;
  933.   bk = 0;
  934.   bb = 0;
  935.  
  936.  
  937.   /* decompress until the last block */
  938.   h = 0;
  939.   do {
  940.     hufts = 0;
  941.     if ((r = inflate_block(&e)) != 0)
  942.       return r;
  943.     if (hufts > h)
  944.       h = hufts;
  945.   } while (!e);
  946.  
  947.   /* Undo too much lookahead. The next read will be byte aligned so we
  948.    * can discard unused bits in the last meaningful byte.
  949.    */
  950.   while (bk >= 8) {
  951.     bk -= 8;
  952.     inptr--;
  953.   }
  954.  
  955.   /* flush out slide */
  956.   flush_output(wp);
  957.  
  958.  
  959.   /* return success */
  960. #ifdef DEBUG
  961.   fprintf(stderr, "<%u> ", h);
  962. #endif /* DEBUG */
  963.   return 0;
  964. }
  965.